* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0b0e14; /* Deep Premium Dark */
    overflow-x: hidden;
}

.navbar-header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 25px;
    z-index: 1000;
}

.navbar {
    width: 90%;
    max-width: 1200px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Floating Logo --- */
.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatingLogo 3s ease-in-out infinite;
    cursor: pointer;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 10;
    border: 2px solid #00f2fe;
}

/* --- AAPKA ORIGINAL GLOW STYLE --- */
.logo-glow {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    transition: all 0.5s ease;
}

/* Hover pe Glow ka color change aur brightness */
.logo-container:hover .logo-glow {
    background: linear-gradient(45deg, #ff00ea, #00f2fe);
    filter: blur(30px);
    transform: scale(1.3);
}

/* --- DHER SAARE BRIGHT STARS --- */
.stars-container {
    position: absolute;
    width: 5px;
    /* Thode bade stars taaki dikhen */
    height: 5px;
    background: transparent;
    z-index: 5;
    opacity: 0;
    border-radius: 50%;
}

.logo-container:hover .stars-container {
    opacity: 1;
    /* 40+ Stars Logic: Har direction mein shadows */
    box-shadow:
        0 -20px #fff, 0 20px #fff, -20px 0 #fff, 20px 0 #fff,
        15px -15px #00f2fe, -15px -15px #ff00ea, 15px 15px #4facfe, -15px 15px #fff,
        10px -40px #fff, -10px 40px #00f2fe, -40px -10px #ff00ea, 40px 10px #fff,
        /* Extra dense layers */
        30px -30px #4facfe, -30px -30px #fff, 30px 30px #00f2fe, -30px 30px #ff00ea,
        0 -50px #fff, 50px 0 #00f2fe, 0 50px #ff00ea, -50px 0 #fff;

    animation: starsBurst 0.7s infinite ease-out;
}

@keyframes starsBurst {
    0% {
        transform: scale(0.2) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: scale(3.5) rotate(120deg);
        /* Stars rotate hokar phailenge */
        opacity: 100;
        /* Bahut bade explosion ke liye shadows */
        box-shadow:
            0 -150px #fff, 0 150px #fff, -150px 0 #fff, 150px 0 #fff,
            120px -120px #00f2fe, -120px -120px #ff00ea, 120px 120px #4facfe, -120px 120px #fff,
            50px -180px #fff, -50px 180px #00f2fe, -180px -50px #ff00ea, 180px 50px #fff,
            140px -140px #4facfe, -140px -140px #fff, 140px 140px #00f2fe, -140px 140px #ff00ea,
            0 -200px #fff, 200px 0 #00f2fe, 0 200px #ff00ea, -200px 0 #fff;
    }
}

@keyframes floatingLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- Nav Links --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 16px;
}

.nav-links a:hover, .nav-links a.active {
    color: #00f2fe;
    text-shadow: 0 0 10px #00f2fe;
}

.join-btn {
    padding: 12px 25px;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.join-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

/* --- Burger Menu (Hidden by default) --- */
.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px;
    transition: 0.4s;
}

/* --- Responsiveness --- */
@media screen and (max-width: 992px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        background: rgba(10, 14, 20, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .burger-menu { display: block; }

    /* Burger X Animation */
    .burger-menu.toggle .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .burger-menu.toggle .bar2 { opacity: 0; }
    .burger-menu.toggle .bar3 { transform: rotate(45deg) translate(-5px, -6px); }
}

:root {
    --bg-black: #020202;
    --primary-blue: #0070f3;
    --primary-purple: #7928ca;
    --text-silver: #ededed;
    --text-dark: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-silver);
    overflow-x: hidden;
}

/* Background Effects Wrapper */
.bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

/* Floating Orbs Animation */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-purple);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #ff0080;
    top: 40%;
    left: 40%;
    animation-duration: 15s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.2); }
}

/* Moving Grid Effect */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 90%);
}

.section-divider {
    width: 100%;
    height: 80px;
    background: #050505;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

/* Moving Text Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.ticker-item:hover {
    color: #0070f3;
    text-shadow: 0 0 10px #0070f3;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Background Flare (Optional: Divider ke peeche halki light) */
.section-divider::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 1px;
    background: #0070f3;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px 2px #0070f3;
}

/* Content Styling */
.premium-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 8%;
}

.badge-animated {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.main-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sub-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 45px;
}

/* Buttons */
.cta-wrapper {
    display: flex;
    gap: 20px;
}

.btn-glow {
    padding: 18px 35px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    padding: 18px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .sub-title { font-size: 3rem; }
    .cta-wrapper { flex-direction: column; }
}

/* Section Base */
.who-we-are {
    min-height: 100vh;
    background-color: #050505;
    display: flex;
    align-items: center;
    padding: 100px 10%;
    position: relative;
    overflow: hidden;
}

.split-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
}

/* Typography */
.reveal-tag {
    color: #0070f3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-heading {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 40px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}

.main-para {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
}

.highlight-white {
    color: #0070f3;
    font-weight: 600;
}

.sub-para {
    font-size: 1.1rem;
    color: #a1a1aa;
    line-height: 1.8;
    max-width: 550px;
}

/* Stats Row */
.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 14px;
    color: #0070f3;
    font-weight: 800;
}

.stat-label {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

/* Visual Card & Effects */
.visual-side {
    position: relative;
}

.premium-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 25px;
    transform: perspective(1500px) rotateY(-20deg) rotateX(5deg);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.premium-card:hover {
    transform: perspective(1500px) rotateY(0deg) rotateX(0deg);
    border-color: rgba(0, 112, 243, 0.5);
}

.window-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f57; }
.yellow { background: #febc2e; }
.green { background: #28c840; }

.card-content pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #d4d4d4;
    line-height: 1.6;
}

.c-1 { color: #569cd6; } /* keyword */
.c-2 { color: #4ec9b0; } /* class */
.c-3 { color: #dcdcaa; } /* method */
.c-4 { color: #9cdcfe; } /* property */
.c-5 { color: #ce9178; } /* string */

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 112, 243, 0.3) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

/* Mobile Friendly */
@media (max-width: 1024px) {
    .split-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .sub-para { margin: 0 auto; }
    .stat-row { justify-content: center; }
    .premium-card { transform: none; }
}

/* 1. Page ko smooth scroll mode pe dalein */
html {
    scroll-behavior: smooth;
}

/* 2. Hero aur Who We Are ke beech ki "Ajeeb" gap fix karein */
.premium-hero {
    padding-top: 100px; /* Navbar ki height + thoda extra space */
    min-height: 100vh;
    display: flex;
    align-items: center; /* Content ko vertical center rakhne ke liye */
    position: relative;
}
/* 3. Divider Styling */
.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 243, 0.5), transparent);
    position: relative;
    z-index: 5;
}

.glow-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 2px;
    background: #0070f3;
    box-shadow: 0 0 20px #0070f3;
}

/* 4. Who We Are Section Styling (Corrected) */
.who-we-are {
    padding: 120px 8%;
    background-color: #050505; /* Hero ke background se match karein */
    min-height: 100vh;
}

.services-section {
    padding: 100px 8%;
    background-color: #050505;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.badge {
    background: rgba(0, 112, 243, 0.1);
    color: #0070f3;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-top: 20px;
    font-weight: 800;
}

.gradient-blue {
    background: linear-gradient(90deg, #0070f3, #7928ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #888;
    font-size: 1.1rem;
    margin-top: 15px;
}



/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Premium Card Styling */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 112, 243, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box {
    font-size: 40px;
    margin-bottom: 25px;
}

.service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.card-list li {
    background: rgba(255, 255, 255, 0.05);
    color: #71717a;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-divider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 10%;
    background: #080808; /* Dark shade */
    border-top: 1px solid rgba(0, 112, 243, 0.3); /* Blue thin line */
    border-bottom: 1px solid rgba(0, 112, 243, 0.3);
    position: relative;
    z-index: 5;
}

.stat-box { text-align: center; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0070f3; /* Agency Blue */
    font-weight: 600;
}
.services-section {
    position: relative;
    background-color: #050505;
    padding: 100px 8%;
    overflow: hidden; /* Taaki background bahar na nikle */
}

/* Background Effects */
.services-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mesh-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(0, 112, 243, 0.1) 1px, transparent 1px);
    background-size: 40px 40px; /* Dots pattern */
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

.glow-orb-top {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 112, 243, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

/* Container spacing */
.services-section .container {
    position: relative;
    z-index: 2; /* Content background se upar rahega */
}

.footer{
  background: linear-gradient(135deg,#0f172a,#020617);
  color:white;
  padding:60px 10%;
  font-family:sans-serif;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:12px;
    align-items:center;
}

.footer-col img{
  width:120px;
  margin-bottom:10px;
}


.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
   align-items:start;
}

.footer h3{
  margin-bottom:15px;
  color:#38bdf8;
   font-size:18px;
}

.footer a{
  display:block;
  color:#cbd5f1;
  text-decoration:none;
  margin:8px 0;
  transition:.3s;
   margin:6px 0;
}

.footer a:hover{
  color:#38bdf8;
  transform:translateX(5px);
}

.footer p{
  margin:8px 0;
  line-height:1.4;
}

.footer-bottom{
  margin-top:20px;
  padding-top:15px;
}

.logo{
width: 50%;  background:linear-gradient(45deg,#38bdf8,#818cf8);
  -webkit-background-clip:text;
  color:transparent;
}

.gradient-text{
  background: linear-gradient(45deg,#38bdf8,#818cf8);

  /* Required for gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Standard property for future support */
  background-clip: text;
  color: transparent;
}

.newsletter{
  display:flex;
  gap:10px;
  align-items:center;
}

.newsletter input{
  padding:10px;
  border:none;
  border-radius:6px;
  flex:1;
   height:42px;
}

.newsletter button{
  padding:10px 16px;
  border:none;
  border-radius:6px;
  background:#38bdf8;
  color:white;
  cursor:pointer;
}

.newsletter button:hover{
  background:#0ea5e9;
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid #1f2937;
  color:#94a3b8;
}

.footer{
   padding:40px 8%;
}


.social-icons a{
  color:white;
  font-size:22px;
  transition:0.3s;
}

.social-icons a:hover{
  color:#38bdf8;
  transform:translateY(-4px);
}

.logo-col{
  display:flex;
  flex-direction:column;
  align-items:flex-start; /* left aligned */
}

.social-icons{
  display:flex;
  gap:12px;
  margin-top:10px;
}



 

